{% extends "base.html" %} {% block title %}Admin Dashboard — LegalEase AI{% endblock %} {% block content %}

Admin Dashboard

Platform overview — all cases, filings, and hearings

{{ total_users }}
Total Users
{{ total_cases }}
Total Cases
{{ total_filings }}
Court Filings
Court Management Overview
Recent Cases
{% for c in recent_cases %}
{{ c.case_reference_no if c.case_reference_no else '#' ~ c.id }} {{ c.category or 'Unclassified' }}
{{ c.status.replace('_',' ').title() }} · {{ c.created_at.strftime('%d %b') if c.created_at else '' }}
{% endfor %}
{% endblock %}